home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1993 / MacHack 1993.toast / MacHack™ 1987-1992 / MacHack™ '90 / Utilities ƒ / MPW Tools ƒ / Simula4.07 / Simula 4.07ƒ / SInterfaces / string_text.sim < prev    next >
Encoding:
Text File  |  1989-03-29  |  189 b   |  9 lines  |  [TEXT/MPS ]

  1. %     text_string
  2. % Routine to convert a Mac Pascal type str255 to a SIMULA text. 
  3. %
  4.  
  5.     text procedure string_text(t); text t;
  6.     begin
  7.         string_text:-t.sub(2,rank(t.sub(1,1).getchar));
  8.     end;
  9.